Namespace - LJCNetCommon
Parameters
name - The element name.
textState - The current text state values.
addIndent -
Indicates if the element can be indented.
Returns
The added element end tag.
Syntax
C# |
public String End(String name, TextState textState, Boolean addIndent = True)
|
Appends the element end tag.
Remarks
The added text will start with a new line if the builder text already has
a value.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
var result = hb.GetEnd("html", textState);
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.